home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / Apache / conf / access.conf-dist-win < prev    next >
Text File  |  1997-10-25  |  2KB  |  76 lines

  1. # access.conf: Global access configuration
  2. # Online docs at http://www.apache.org/
  3.  
  4. # This file defines server settings which affect which types of services
  5. # are allowed, and in what circumstances. 
  6.  
  7. # Each directory to which Apache has access, can be configured with respect
  8. # to which services and features are allowed and/or disabled in that
  9. # directory (and its subdirectories). 
  10.  
  11. # Note: Where filenames are specified, you must use forward slashes
  12. # instead of backslashes. e.g. "c:/apache" instead of "c:\apache". If
  13. # the drive letter is ommited, the drive where Apache.exe is located
  14. # will be assumed
  15.  
  16. # Originally by Rob McCool
  17.  
  18. # This should be changed to whatever you set DocumentRoot to.
  19.  
  20. <Directory "@@ServerRoot@@/htdocs">
  21.  
  22. # This may also be "None", "All", or any combination of "Indexes",
  23. # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
  24.  
  25. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  26. # doesn't give it to you (or at least, not yet).
  27.  
  28. Options Indexes FollowSymLinks
  29.  
  30. # This controls which options the .htaccess files in directories can
  31. # override. Can also be "All", or any combination of "Options", "FileInfo", 
  32. # "AuthConfig", and "Limit"
  33.  
  34. AllowOverride None
  35.  
  36. # Controls who can get stuff from this server.
  37.  
  38. order allow,deny
  39. allow from all
  40.  
  41. </Directory>
  42.  
  43. # /apache/cgi-bin should be changed to whatever your ScriptAliased
  44. # CGI directory exists, if you have that configured.
  45.  
  46. <Directory /apache/cgi-bin>
  47. AllowOverride None
  48. Options None
  49. </Directory>
  50.  
  51. # Allow server status reports, with the URL of http://servername/server-status
  52. # Change the ".your_domain.com" to match your domain to enable.
  53.  
  54. #<Location /server-status>
  55. #SetHandler server-status
  56.  
  57. #order deny,allow
  58. #deny from all
  59. #allow from .your_domain.com
  60. #</Location>
  61.  
  62. # There have been reports of people trying to abuse an old bug from pre-1.1
  63. # days.  This bug involved a CGI script distributed as a part of Apache.
  64. # By uncommenting these lines you can redirect these attacks to a logging 
  65. # script on phf.apache.org.  Or, you can record them yourself, using the script
  66. # support/phf_abuse_log.cgi.
  67.  
  68. #<Location /cgi-bin/phf*>
  69. #deny from all
  70. #ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
  71. #</Location>
  72.  
  73. # You may place any other directories or locations you wish to have
  74. # access information for after this one.
  75.  
  76.